home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / CUG187.LZH / CONOUT.C < prev    next >
C/C++ Source or Header  |  1985-12-30  |  715b  |  19 lines

  1. /*@*****************************************************/
  2. /*@                                                    */
  3. /*@ conout - output a string to the screen using       */
  4. /*@        DeSmet interrupt 10 routine.  Only          */
  5. /*@        exists to allow quick modification.         */
  6. /*@                                                    */
  7. /*@   Usage:     conout(string, attribute);            */
  8. /*@       where attribute defined in IBM Tech Manual.  */
  9. /*@       (copout till I find my list).                */
  10. /*@                                                    */
  11. /*@*****************************************************/
  12.  
  13. conout(s,attr)
  14. char *s;
  15. int attr;
  16. {
  17.     scr_aputs(s,attr);
  18. }
  19.